home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-26 | 889 b | 21 lines | [TEXT/ScoM] |
- HOW TO RECREATE VISUALIZER
-
- > Can't I simply use the "convert vector to symbol" command allong with all
- >of the necessary scaling and sample lenght functions which define how the
- >conversion will take place? I just can't seem to figure out the correct
- >syntax to do this.
-
- Here is principle how to chaing the functions. The execution happens
- from innermost to the outermost function. Make some experiments with
- these functions. The first one conversts a symbol pattern to a vector
- pattern which is then rounded to a range 0 .. 127 and then bound to
- atom mater1.
-
- (setq mater1 (vector-round 0 127 (symbol-to-vector ... <symbol>)))
-
- Here you first select a subrange of a vector, which is then quantized to
- a given length and resolution, which is then rounded to a range 0 .. 127
- and bound to mater2.
-
- (setq mater2 (vector-round 0 127 (vector-quantize ... (subrange ... <vector>))))
-